home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software USA 4 #11
/
Software USA Volume 4.11.iso
/
mac
/
Educational
/
mac06
/
usr
/
include
/
utime.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1998-07-24
|
220 b
|
17 lines
|
[
TEXT/SPM
]
/* mac06©1997,98 by HNS/DSITRI hns@computer.org
** utime.h
*/
#pragma once
#include "time_t.h"
struct utimbuf
{
time_t actime;
time_t modtime;
};
int utime(const char *name, const struct utimbuf *tp);
/* EOF */